home *** CD-ROM | disk | FTP | other *** search
/ Final Fantasy the Spirits Within Cardz / Final Fantasy the Spirits Within CD Cardz - Disc 2: Gray Edwards.iso / pc / assets / gray-photogallery.dcr / 00029_firstbutton.ls < prev    next >
Encoding:
Text File  |  2001-07-21  |  415 b   |  25 lines

  1. global buttonchecker
  2.  
  3. on mouseUp
  4.   puppetSound(1, "Clicker")
  5.   if buttonchecker = 0 then
  6.     set the loc of sprite 25 to point(689, 394)
  7.     sprite(24).visible = 1
  8.     buttonchecker = 1
  9.   else
  10.     if buttonchecker = 1 then
  11.       set the loc of sprite 25 to point(689, 375)
  12.       sprite(24).visible = 0
  13.       buttonchecker = 0
  14.     end if
  15.   end if
  16. end
  17.  
  18. on mouseEnter
  19.   cursor(280)
  20. end
  21.  
  22. on mouseLeave
  23.   cursor(-1)
  24. end
  25.